std::unordered_set::begin(int), std::unordered_set::cbegin(int)
From Cppreference
< cpp | container | unordered set
| iterator begin( size_type n );
| (C++0x feature) | |
| const_iterator begin( size_type n ) const;
| (C++0x feature) | |
| const_iterator cbegin( size_type n ) const;
| (C++0x feature) | |
Returns an iterator to the first element of the bucket with index pos.
Contents |
Parameters
| n | - | the index of the bucket to access |
Return value
iterator to the first element
Complexity
constant
See also
| returns an iterator to the end of the specified bucked (public member function) | |